type net/http.http2clientConnPool

14 uses

	net/http (current package)
		h2_bundle.go#L758: 	_ http2clientConnPoolIdleCloser = (*http2clientConnPool)(nil)
		h2_bundle.go#L763: type http2clientConnPool struct {
		h2_bundle.go#L775: func (p *http2clientConnPool) GetClientConn(req *Request, addr string) (*http2ClientConn, error) {
		h2_bundle.go#L784: func (p *http2clientConnPool) getClientConn(req *Request, addr string, dialOnMiss bool) (*http2ClientConn, error) {
		h2_bundle.go#L835: 	p *http2clientConnPool
		h2_bundle.go#L845: func (p *http2clientConnPool) getStartDialLocked(ctx context.Context, addr string) *http2dialCall {
		h2_bundle.go#L882: func (p *http2clientConnPool) addConnIfNeeded(key string, t *http2Transport, c *tls.Conn) (used bool, err error) {
		h2_bundle.go#L913: 	p    *http2clientConnPool
		h2_bundle.go#L935: func (p *http2clientConnPool) addConnLocked(key string, cc *http2ClientConn) {
		h2_bundle.go#L951: func (p *http2clientConnPool) MarkDead(cc *http2ClientConn) {
		h2_bundle.go#L969: func (p *http2clientConnPool) closeIdleConnections() {
		h2_bundle.go#L1003: type http2noDialClientConnPool struct{ *http2clientConnPool }
		h2_bundle.go#L7318: 	connPool := new(http2clientConnPool)
		h2_bundle.go#L7369: 		t.connPoolOrDef = &http2clientConnPool{t: t}